Gets the collection of indexes attached to this collection.

Namespace:  C1.LiveLinq.Indexing
Assembly:  C1.LiveLinq (in C1.LiveLinq.dll)

Syntax

C#
ScannerCollection<T> Indexes { get; }
Visual Basic
ReadOnly Property Indexes As ScannerCollection(Of T)
	Get

Field Value

A collection of indexes attached to this collection. If this is an independent collection, not the result of a LiveLinq indexing search, then its Indexes collection contains Index<(Of <(<'T>)>)> objects. Otherwise, that is, if it is the result of an indexing search operation such as Index.Find and others, it contains subindexes implementing IIndexScanner<(Of <(<'T>)>)>.

See Also